ActionProvider

abstract class ActionProvider(source)

This class is a mediator for accomplishing a given task, for example sharing a file. It is responsible for creating a view that performs an action that accomplishes the task. This class also implements other functions such a performing a default action.

An ActionProvider can be optionally specified for a android.view.MenuItem and in such a case it will be responsible for creating the action view that appears in the android.app.ActionBar as a substitute for the menu item when the item is displayed as an action item. Also the provider is responsible for performing a default action if a menu item placed on the overflow menu of the ActionBar is selected and none of the menu item callbacks has handled the selection. For this case the provider can also optionally provide a sub-menu for accomplishing the task at hand.

There are two ways for using an action provider for creating and handling of action views:

  • Setting the action provider on a android.view.MenuItem directly by calling setActionProvider.
  • Declaring the action provider in the menu XML resource. For example:
    
      <item android:id="@+id/my_menu_item"
        android:title="@string/my_menu_item_title"
        android:icon="@drawable/my_menu_item_icon"
        android:showAsAction="ifRoom"
        android:actionProviderClass="foo.bar.SomeActionProvider" />
    
### Creating a custom action provider

To create a custom action provider, extend ActionProvider and implement its callback methods as necessary. In particular, implement the following methods:

ActionProvider() constructor
This constructor is passed the application context. You should save the context in a member field to use in the other callback methods.
onCreateActionView(MenuItem)
The system calls this method when the action provider is created. You define the action provider's layout through the implementation of this method. Use the context acquired from the constructor to instantiate a android.view.LayoutInflater and inflate your action provider's layout from an XML resource, then hook up event listeners for the view's components. For example:
public View onCreateActionView(MenuItem forItem) {
    // Inflate the action provider to be shown on the action bar.
    LayoutInflater layoutInflater = LayoutInflater.from(mContext);
    View providerView =
        layoutInflater.inflate(R.layout.my_action_provider, null);
    ImageButton button =
        (ImageButton) providerView.findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // Do something...
        }
    });
    return providerView;
}
onPerformDefaultAction()

The system calls this method when the user selects a menu item from the action overflow. The action provider should perform a default action for the menu item. The system does not call this method if the menu item opens a submenu.

If your action provider presents a submenu through the onPrepareSubMenu() callback, the submenu appears even if the action provider is in the overflow menu. Thus, the system never calls onPerformDefaultAction() if there is a submenu.

Note: An activity or a fragment that implements onOptionsItemSelected() can override the action provider's default behavior (unless it uses a submenu) by handling the item-selected event and returning true. In this case, the system does not call onPerformDefaultAction().

See also

Constructors

Link copied to clipboard
constructor(@NonNull context: Context)
Creates a new instance.

Types

Link copied to clipboard
Listens to changes in visibility as reported by refreshVisibility.

Functions

Link copied to clipboard
Gets the context associated with this action provider.
Link copied to clipboard
open fun hasSubMenu(): Boolean
Determines if this ActionProvider has a submenu associated with it.
Link copied to clipboard
open fun isVisible(): Boolean
If overridesItemVisibility returns true, the return value of this method will help determine the visibility of the MenuItem this ActionProvider is bound to.
Link copied to clipboard
Factory method for creating new action views.
Factory method called by the Android framework to create new action views.
Link copied to clipboard
Performs an optional default action.
Link copied to clipboard
open fun onPrepareSubMenu(@NonNull subMenu: SubMenu)
Called to prepare an associated submenu for the menu item backed by this ActionProvider.
Link copied to clipboard
The result of this method determines whether or not isVisible will be used by the MenuItem this ActionProvider is bound to help determine its visibility.
Link copied to clipboard
If this ActionProvider is associated with an item in a menu, refresh the visibility of the item based on overridesItemVisibility and isVisible.
Link copied to clipboard
Link copied to clipboard
Set a listener to be notified when this ActionProvider's overridden visibility changes.
Link copied to clipboard
Notify the system that the visibility of an action view's sub-UI such as an anchored popup has changed.